//Get bits in int
int Bit_Count(unsigned int num){
	unsigned int count = 0;
	
	while (num > 0){
		num/= 2;
		count++;
	}
	return count;
}